home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / field-show.izs < prev    next >
Text File  |  2005-09-28  |  3KB  |  97 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Field Show 
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Use radio buttons to display a field for your users to add input to your forms. <!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL FIELD SHOW:
  15.  
  16.   1.  Copy code into the HEAD section of document
  17.   2.  Put last coding into the BODY section of document  -->
  18.  
  19. <!-- STEP ONE: Add code into HEAD section of document  -->
  20.  
  21. <HEAD>
  22.  
  23. <script language="JavaScript">
  24.  
  25. <!-- Original at: http://hotarea.com/ -->
  26. <!--  
  27. function showDiv( id ) { 
  28.     document.all.textBox01.style.visibility = 'hidden'; 
  29.     document.all.textBox02.style.visibility = 'hidden'; 
  30.     document.all.textBox01.value = ''; 
  31.     document.all.textBox02.value = ''; 
  32.     document.all[ id ].style.visibility = 'visible'; 
  33.     document.all[ id ].focus(); 
  34. }
  35.     -->
  36. </script>
  37. </HEAD>
  38.  
  39. <!-- STEP TWO: Add code into BODY section of document  -->
  40.  
  41. <BODY>
  42.  
  43. Add your e-mail address here: <input type=radio name=radioBtn onClick="showDiv( 'textBox01' );"> 
  44. <input type=text  name=textBox01 size=30 style="visibility:hidden"> 
  45. <br><strong>OR</strong><br>
  46. Give us your FAX number: <input type=radio name=radioBtn onClick="showDiv( 'textBox02' );"> 
  47. <input type=text  name=textBox02 size=20 style="visibility:hidden">
  48.  
  49.  
  50. <!-- END OF SCRIPT -->
  51. <!/SCRIPT>
  52.  
  53. <!PREVIEW>
  54. <!-- START OF SCRIPT -->
  55.  
  56.  
  57. <!-- HOW TO INSTALL FIELD SHOW:
  58.  
  59.   1.  Copy code into the HEAD section of document
  60.   2.  Put last coding into the BODY section of document  -->
  61.  
  62. <!-- STEP ONE: Add code into HEAD section of document  -->
  63.  
  64. <HEAD>
  65.  
  66. <script language="JavaScript">
  67.  
  68. <!-- Original at: http://hotarea.com/ -->
  69. <!--  
  70. function showDiv( id ) { 
  71.     document.all.textBox01.style.visibility = 'hidden'; 
  72.     document.all.textBox02.style.visibility = 'hidden'; 
  73.     document.all.textBox01.value = ''; 
  74.     document.all.textBox02.value = ''; 
  75.     document.all[ id ].style.visibility = 'visible'; 
  76.     document.all[ id ].focus(); 
  77. }
  78.     -->
  79. </script>
  80. </HEAD>
  81.  
  82. <!-- STEP TWO: Add code into BODY section of document  -->
  83.  
  84. <BODY>
  85.  
  86. Add your e-mail address here: <input type=radio name=radioBtn onClick="showDiv( 'textBox01' );"> 
  87. <input type=text  name=textBox01 size=30 style="visibility:hidden"> 
  88. <br><strong>OR</strong><br>
  89. Give us your FAX number: <input type=radio name=radioBtn onClick="showDiv( 'textBox02' );"> 
  90. <input type=text  name=textBox02 size=20 style="visibility:hidden">
  91.  
  92.  
  93. <!-- END OF SCRIPT -->
  94. <!/PREVIEW>
  95.  
  96. <!RELATED>NONE<!/RELATED>
  97.